bufio.Reader.lastByte (field)
14 uses
bufio (current package)
bufio.go#L37: lastByte int // last byte read for UnreadByte; -1 means invalid
bufio.go#L88: lastByte: -1,
bufio.go#L144: b.lastByte = -1
bufio.go#L181: b.lastByte = -1
bufio.go#L232: b.lastByte = int(p[n-1])
bufio.go#L256: b.lastByte = int(b.buf[b.r-1])
bufio.go#L273: b.lastByte = int(c)
bufio.go#L283: if b.lastByte < 0 || b.r == 0 && b.w > 0 {
bufio.go#L293: b.buf[b.r] = byte(b.lastByte)
bufio.go#L294: b.lastByte = -1
bufio.go#L315: b.lastByte = int(b.buf[b.r-1])
bufio.go#L329: b.lastByte = -1
bufio.go#L381: b.lastByte = int(line[i])
bufio.go#L515: b.lastByte = -1
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |